Fix: Cast exception occurs if function/source/sink type is ByteBuffer#11611
Merged
jerrypeng merged 1 commit intoAug 10, 2021
Merged
Conversation
jerrypeng
force-pushed
the
fix_pulsar_functions_byte_buffer
branch
from
August 10, 2021 00:04
1c1464e to
766381f
Compare
cckellogg
approved these changes
Aug 10, 2021
merlimat
approved these changes
Aug 10, 2021
jerrypeng
added a commit
to jerrypeng/incubator-pulsar
that referenced
this pull request
Aug 18, 2021
…apache#11611) Co-authored-by: Jerry Peng <jerryp@splunk.com>
jerrypeng
added a commit
to jerrypeng/incubator-pulsar
that referenced
this pull request
Nov 4, 2021
…apache#11611) Co-authored-by: Jerry Peng <jerryp@splunk.com>
dlg99
pushed a commit
to dlg99/pulsar
that referenced
this pull request
Mar 4, 2022
…apache#11611) Co-authored-by: Jerry Peng <jerryp@splunk.com> (cherry picked from commit b7e027b)
eolivelli
pushed a commit
to datastax/pulsar
that referenced
this pull request
Mar 7, 2022
…apache#11611) Co-authored-by: Jerry Peng <jerryp@splunk.com> (cherry picked from commit b7e027b)
bharanic-dev
pushed a commit
to bharanic-dev/pulsar
that referenced
this pull request
Mar 18, 2022
…apache#11611) Co-authored-by: Jerry Peng <jerryp@splunk.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Motivation
If a Pulsar Function/Source/Sink is of type ByteBuffer, an cast exception will occur:
The is because if the function is of type ByteBuffer, the schema to used in the consumer is BYTES, which is not correct
Modifications
Use the correct ByteBuffer schema when the type of the function/source/sink is ByteBuffer
Verifying this change
Added a test
Documentation
No changes necessary
For committer
For this PR, do we need to update docs?
No